home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-01.zip / 01 / Hity z okladki / OrgPlus 6 SBE / ORGPL.CAB / table.xslt < prev    next >
Extensible Markup Language  |  2006-09-20  |  2KB  |  48 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet
  3.    version="1.0"
  4.    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  5. <xsl:output method="html" indent="no"/>
  6. <xsl:template match="/ArrayOfCLogRecord">
  7.    <html>
  8.       <head>
  9.          <title>Logs</title>
  10.       </head>
  11.       <body>
  12.         <table>
  13.           <tr style="background-color: #999999; font-weight: bold;">
  14.              <td>Info</td>
  15.              <td>Description</td>
  16.           </tr>
  17.           <xsl:apply-templates/>
  18.         </table>
  19.       </body>
  20.    </html>
  21. </xsl:template>
  22. <xsl:template match="CLogRecord[position() mod 2 = 1]">
  23.    <tr style="background-color: normal;">
  24.       <td><xsl:value-of select="@Type"/></td>
  25.       <td><xsl:value-of select="@Text"/></td>
  26.    </tr>
  27. </xsl:template>
  28. <xsl:template match="CLogRecord">
  29.    <tr style="background-color: #dfdfdf;">
  30.       <td><xsl:value-of select="@Type"/></td>
  31.       <td><xsl:value-of select="@Text"/></td>
  32.    </tr>
  33. </xsl:template>
  34. <xsl:template match="CLogRecord[@Type = 'Warning']">
  35.    <tr style="background-color: #dfdfdf;">
  36.       <td bgcolor="yellow"><xsl:value-of select="@Type"/></td>
  37.       <td bgcolor="yellow"><xsl:value-of select="@Text"/></td>
  38.    </tr>
  39. </xsl:template>
  40. <xsl:template match="CLogRecord[@Type = 'Error']">
  41.    <tr style="background-color: #dfdfdf;">
  42.       <td bgcolor="red"><xsl:value-of select="@Type"/></td>
  43.       <td bgcolor="red"><xsl:value-of select="@Text"/></td>
  44.    </tr>
  45. </xsl:template>
  46.  
  47. </xsl:stylesheet>
  48.